projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9f7d921
)
(Fformat): Add parens.
author
Richard M. Stallman
<rms@gnu.org>
Sat, 21 Dec 2002 18:00:23 +0000
(18:00 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Sat, 21 Dec 2002 18:00:23 +0000
(18:00 +0000)
src/editfns.c
patch
|
blob
|
history
diff --git
a/src/editfns.c
b/src/editfns.c
index 6deb9b96f8ab3190eee1a57d43d560840fbebe77..6539cd11d45635f88cf8adc682d7f4e8e17352a7 100644
(file)
--- a/
src/editfns.c
+++ b/
src/editfns.c
@@
-3386,7
+3386,8
@@
usage: (format STRING &rest OBJECTS) */)
so we have to take into account what that function
prints. */
/* Filter out flag value of -1. */
- thissize = MAX_10_EXP + 100 + ((precision[n] > 0) ? precision[n] : 0);
+ thissize = (MAX_10_EXP + 100
+ + (precision[n] > 0 ? precision[n] : 0));
}
else
{